home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-01-14 | 834 b | 31 lines | [TEXT/MPS ] |
- /* _________________________________________________________________________________________________________ //
- Copyright © 1992 Apple Computer, Inc. All rights reserved.
- Macintosh Developer Technical Support.C++ Macintosh Toolbox Framework.
- Originator: Kent Sandvik
- Date: Wednesday, June 10, 1992 22:37:30
- Revision comments are at the end of this file.
- ---
- TFoo is an xxx class.
- TemplateTest.cp contains the testing code for testing TFoo.
- _________________________________________________________________________________________________________ */
-
- // ••• Specify here the one and only C++ class file
- // Include files
- #ifndef _FOO_
- #include "Template.h"
- #endif
-
- // ••• Specify here a short description of the tests below
-
- main()
- {
- cout << "Start TFoo testing…\n";
-
-
- cout << "End TFoo testing!\n";
-
- return 0;
- }
-
-
-